home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / dev / gui / MUI14_dev.lha / MUI / Developer / C / DLib / newobj.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-01  |  224 b   |  11 lines

  1. #include <clib/muimaster_protos.h>
  2. #include <pragmas/muimaster_pragmas.h>
  3.  
  4. extern struct Library *MUIMasterBase;
  5.  
  6. APTR MUI_NewObject(char *class, Tag tag1, ...)
  7. {
  8.  return(MUI_NewObjectA(class, (struct TagItem *) &tag1));
  9. }
  10.  
  11.